home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / icmp_var.h < prev    next >
C/C++ Source or Header  |  1988-06-29  |  1KB  |  42 lines

  1. /*
  2.  * Copyright (c) 1982, 1986 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  *
  12.  *    @(#)icmp_var.h    7.3 (Berkeley) 12/7/87
  13.  */
  14.  
  15. #ifndef _ICMP_VAR
  16. #define _ICMP_VAR
  17.  
  18. /*
  19.  * Variables related to this implementation
  20.  * of the internet control message protocol.
  21.  */
  22. struct    icmpstat {
  23. /* statistics related to icmp packets generated */
  24.     int    icps_error;        /* # of calls to icmp_error */
  25.     int    icps_oldshort;        /* no error 'cuz old ip too short */
  26.     int    icps_oldicmp;        /* no error 'cuz old was icmp */
  27.     int    icps_outhist[ICMP_MAXTYPE + 1];
  28. /* statistics related to input messages processed */
  29.     int    icps_badcode;        /* icmp_code out of range */
  30.     int    icps_tooshort;        /* packet < ICMP_MINLEN */
  31.     int    icps_checksum;        /* bad checksum */
  32.     int    icps_badlen;        /* calculated bound mismatch */
  33.     int    icps_reflect;        /* number of responses */
  34.     int    icps_inhist[ICMP_MAXTYPE + 1];
  35. };
  36.  
  37. #ifdef KERNEL
  38. struct    icmpstat icmpstat;
  39. #endif
  40.  
  41. #endif _ICMP_VAR
  42.